home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Hyper Stacks 1994 May
/
Hyper Stacks (Pacific HiTech)(1994)[Mac].iso
/
MacTools
/
C++
/
card_16517_render.png
< prev
next >
Tile
Portable Network Graphic
|
1991-11-29
|
1.6 KB
|
512x342
|
4-bit (3 colors)
ocr:
// program to print out a decimal, hex and octal value mainU I cout << dec // set base to be decimal <<1 10 << endi; ; cout << hex // set base to be hex <<10 << endl; cout << oct // set base to be octal <<10 << endl; ; )